home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / strstr < prev    next >
Text File  |  2001-04-06  |  398b  |  13 lines

  1. SYNOPSIS
  2.         int strstr (string str, string str2, int pos)
  3.  
  4. DESCRIPTION
  5.         Returns the index of str2 in str searching from position pos.
  6.         If str2 is not found in str, -1 is returned. The returned
  7.         index is relativ to the beginning of the string.
  8.  
  9.         If pos is negativ, it counts from the end of the string.
  10.  
  11. SEE ALSO
  12.         strlen(E), sscanf(E), sprintf(E), explode(E)
  13.